home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-0195.lzh / AMOSLIST / text0008.txt < prev    next >
Encoding:
Text File  |  1995-02-01  |  1.3 KB  |  36 lines

  1. >Hope someone can help:
  2. >
  3. >1. Is there any way to load raw binary data to a screen?
  4. >   (perhaps if I could find the start address of an open screen?)
  5.  
  6.   The addresses of the bitplanes are in the first six longwords at
  7. Screen Base.  
  8.  
  9. >2. Can I use an 8 point font other than the default one with normal
  10. >   (not graphic) text operations (and other things like editing
  11. >   zones)?
  12.  
  13.   You have to use the Font_Convert utility (or whatever it's called) to
  14. convert the desired font into the right format.  I don't know whether
  15. it's even possible in AMOS Pro.
  16.  
  17. >3. Are there any useful tips for ensuring that your program
  18. >   runs at a similar speed on different speed Amigas, particularly
  19. >   when you're using AMAL?
  20.  
  21.   Use the vertical blank interrupt.  In your main program, put "Wait Vbl"
  22. at the end of your main loop, and use a "P" command at the end of a loop
  23. in AMAL..  If your loops are long, there may be a speed decrease on slow
  24. Amigas, but otherwise, your program will be sync'ed to the vertical
  25. blank, which (apart from differences between NTSC and PAL, which you can
  26. detect with the Ntsc function) is always the same speed.
  27.  
  28. >4. And lastly, I've heard mention of a utility that came with older
  29. >   versions of AMOS which converted Sonix music files to a form usable
  30. >   by AMOS. Anyone know where I can get it?
  31.  
  32.   Nope, sorry.
  33.  
  34.   --Andy Church
  35.  
  36.